home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE23
/
PZAZZDEM
/
PZAZZDEM.ZIP
/
VCL16
/
PZITEMED.DFM
/
PZITEMED.txt
Wrap
Text File
|
1996-11-07
|
4KB
|
164 lines
object PZItemsEditForm: TPZItemsEditForm
Left = 217
Top = 157
ActiveControl = Memo
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Items editor'
ClientHeight = 275
ClientWidth = 513
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object LineCount: TLabel
Left = 16
Top = 12
Width = 169
Height = 17
AutoSize = False
Caption = '0 lines'
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Bevel1: TBevel
Left = 8
Top = 8
Width = 497
Height = 229
Shape = bsFrame
end
object Memo: TMemo
Left = 16
Top = 28
Width = 481
Height = 201
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
WantTabs = True
WordWrap = False
OnChange = UpdateStatus
OnKeyDown = MemoKeyDown
end
object OkBtn: TBitBtn
Left = 176
Top = 244
Width = 75
Height = 25
Caption = '&OK'
Default = True
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ModalResult = 1
ParentFont = False
TabOrder = 3
NumGlyphs = 2
end
object CancelBtn: TBitBtn
Left = 260
Top = 244
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ModalResult = 2
ParentFont = False
TabOrder = 4
NumGlyphs = 2
end
object LoadBtn: TBitBtn
Left = 8
Top = 244
Width = 75
Height = 25
Caption = '&Load...'
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 1
OnClick = FileOpen
end
object SaveBtn: TBitBtn
Left = 92
Top = 244
Width = 75
Height = 25
Caption = '&Save...'
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 2
OnClick = FileSave
end
object HelpBtn: TBitBtn
Left = 428
Top = 244
Width = 75
Height = 25
Caption = '&Help'
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 6
OnClick = HelpBtnClick
NumGlyphs = 2
end
object AlignBtn: TBitBtn
Left = 344
Top = 244
Width = 75
Height = 25
Caption = '&Align'
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 5
OnClick = AlignBtnClick
end
object OpenDialog: TOpenDialog
DefaultExt = 'TXT'
FileEditStyle = fsEdit
Filter =
'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist]
Title = 'Load string list'
Left = 440
end
object SaveDialog: TSaveDialog
FileEditStyle = fsEdit
Filter =
'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist]
Title = 'Save string list'
Left = 468
end
end